home *** CD-ROM | disk | FTP | other *** search
- @echo off
-
- if '%1' == '' goto NORMAL
- goto %1
-
- :NORMAL
- cls
- echo ╔═════════════════════════════════════════════════════════════════════════════╗
- echo ║ Before running FPROT.BAT, you may add a few environment variables to ║
- echo ║ LOGIN script that give identification of user station and login name ║
- echo ║ ║
- echo ║ Below are a couple of variables you will want to establish: ║
- echo ║ ║
- echo ║ [sample LOGIN script] ║
- echo ║ ║
- echo ║ dos set NETNAME="%FULL_NAME" name assigned by SYSCON ║
- echo ║ dos set STATION="%STATION" connection number at file server ║
- echo ║ dos set NODE="%P_STATION" node address ║
- echo ║ ║
- echo ║ ║
- echo ║ FPROT.BAT copies these values into a file called LOGG, which is located ║
- echo ║ on the user's locad hard drive, and then later appended to the network ║
- echo ║ the report generated by F-PROT.EXE. The path will need to be modified in ║
- echo ║ FPROT.BAT to reflect where the report is to be saved on the server. ║
- echo ║ ║
- echo ╚═════════════════════════════════════════════════════════════════════════════╝
- pause
- cls
- echo ╔═════════════════════════════════════════════════════════════════════════════╗
- echo ║ Also before running FPROT.BAT, edit line 151 or ERR-CHK.BAT to identify ║
- echo ║ ║
- echo ║ where the destination report is to be written on the file server. ║
- echo ║ ║
- echo ║ For more information contact the technical support department ║
- echo ║ ║
- echo ║ Command Software Systems ║
- echo ║ (407) 575-3200 ║
- echo ║ ║
- echo ║ ║
- echo ║ For a printed copy of this document type: ║
- echo ║ ║
- echo ║ README PRINT ║
- echo ║ ║
- echo ║ at the c: prompt. ║
- echo ║ ║
- echo ╚═════════════════════════════════════════════════════════════════════════════╝
- GOTO END
-
- :PRINT
- TYPE README.BAT > PRN
-
- :END
-